From: Lars Magne Ingebrigtsen Date: Thu, 14 Jul 2011 12:57:06 +0000 (+0200) Subject: (initial-buffer-choice): Don't mention the `none' selection, which is against policy. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~2852 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=fc82b7c81f7274d41bf2252db2556d790c537587;p=emacs.git (initial-buffer-choice): Don't mention the `none' selection, which is against policy. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 07c0c2c9b07..e00f215cb42 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2011-07-14 Lars Magne Ingebrigtsen + + * startup.el (initial-buffer-choice): Don't mention the `none' + selection, which is against policy. + 2011-07-14 Martin Rudalics * window.el (display-buffer-normalize-special): Replace diff --git a/lisp/startup.el b/lisp/startup.el index 66deb11623a..6953ed25ed4 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -43,14 +43,12 @@ If the value is nil and `inhibit-startup-screen' is nil, show the startup screen. If the value is string, visit the specified file or directory using `find-file'. If t, open the `*scratch*' -buffer. If `none', don't select anything, but show the -buffer (if any) selected by the startup file." +buffer." :type '(choice (const :tag "Startup screen" nil) (directory :tag "Directory" :value "~/") (file :tag "File" :value "~/.emacs") - (const :tag "Lisp scratch buffer" t) - (const :tag "Select no buffer" 'none)) + (const :tag "Lisp scratch buffer" t)) :version "23.1" :group 'initialization)